home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-10-15 | 2.1 KB | 65 lines | [TEXT/MPS ] |
- ///////////////////////////////////////////////////////////////////////////////
- //
- // EchoService.h
- //
- // Revisions:
- // 10/30/94 Stuart Russell created
- //
- ///////////////////////////////////////////////////////////////////////////////
-
- #ifndef __StandardServices__
- #define __StandardServices__
-
- #ifndef __Service__
- #include "Service.h"
- #endif
-
- #ifndef __LIST__
- #include "List.h"
- #endif
-
- /*
- #ifndef __PASCALSTRING__
- #include "PascalString.h"
- #endif
- */
-
- //—————————————————————————————————————————————————————————————————————————————————————
- // EchoThreadService class - implements a service for V.U. to utilize
- //—————————————————————————————————————————————————————————————————————————————————————
- class EchoThreadService : public ThreadedService
- {
- public: //——————————————————————— public member functions
- EchoThreadService(void); // constructor
- virtual ~EchoThreadService(void); // destructor
- virtual OSErr ProcessRequest( Request* pReq ); // Implements the Request
- };
-
- //—————————————————————————————————————————————————————————————————————————————————————
- // EchoNoThreadService class - implements a service for V.U. to utilize
- //—————————————————————————————————————————————————————————————————————————————————————
- class EchoNoThreadService : public Service
- {
- public: //——————————————————————— public member functions
- EchoNoThreadService(void); // constructor
- virtual ~EchoNoThreadService(void); // destructor
- virtual OSErr ProcessRequest( Request* pReq ); // Implements the Request
- };
-
-
- //—————————————————————————————————————————————————————————————————————————————————————
- // SetSleepTicksService class - implements a service for V.U. to utilize
- //—————————————————————————————————————————————————————————————————————————————————————
- class SetSleepTicksService : public Service
- {
- public: //——————————————————————— public member functions
- SetSleepTicksService(void); // constructor
- virtual ~SetSleepTicksService(void); // destructor
- virtual OSErr ProcessRequest( Request* pReq ); // Implements the Request
- };
-
-
-
- #endif __StandardServices__
-
-